home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frozen Fish 1: Amiga
/
FrozenFish-Apr94.iso
/
bbs
/
alib
/
d9xx
/
d906
/
powerdata.lha
/
PowerData
/
Documentation
/
ARexx Examples
/
ShowWindow.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1993-08-28
|
579b
|
34 lines
/* NAME
* ShowWindow.rexx - Show PowerDatas GUI
*
* SYNOPSIS
* rx ShowWindow
*
* FUNCTION
* If PowerData is running, then have it show its window. If the window
* is already showing, then this macro will do nothing.
*
* INPUTS
* None
*
* OUTPUTS
* None
*
* NOTES
*
* SEE ALSO
*
* Author: Michael Berg
* Date : 9-Mar-1993
* This file is part of the PowerData distribution.
*/
IF SHOW(P,'POWERDATA') THEN DO
ADDRESS 'POWERDATA' showwindow
SAY 'PowerData window is now showing'
END
ELSE
SAY 'PowerData is not running'
/* The End */